home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000160_news@watsun.cc.columbia.edu _Thu Jan 28 03:48:30 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id DAA26445
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 28 Jan 1999 03:48:24 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id DAA21248
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 28 Jan 1999 03:33:19 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: Muljawan Hendrianto <muljawan.hendrianto@siemens.com.sg>
  10. Subject: Re: NEWBIE:C-Kermit for sending numeric pager
  11. Date: Thu, 28 Jan 1999 16:32:59 +0800
  12. Organization: Siemens Inc.
  13. Message-ID: <36B020B9.A064558C@siemens.com.sg>
  14. To: kermit.misc@mailrelay2.cc.columbia.edu
  15.  
  16.  
  17.  
  18. Frank da Cruz wrote:
  19.  
  20. > In article <36AEBAE1.8EAB8AD3@siemens.com.sg>,
  21. > Muljawan Hendrianto  <muljawan@uninet.net.id> wrote:
  22. > : I am running the C-Kermit 6.1.193 Beta.05, 7 May 1998, for Linux RedHat.
  23. > :
  24. > : I want to use it for sending numeric pager, but I don't know what is the
  25. > : correct format of the dial command to do it.
  26. > : In the C-Kermit Book, I only found the following,
  27. > :
  28. > : C-Kermit>dial 5551234@nnnnnnnnn#;
  29. > :
  30. > : Which should be working for Hayes or compatible modem according to
  31. > : C-Kermit's Book.  I am using Motorola Codex 3265 modem,
  32. > :
  33. > But that is not one of Kermit's built-in modem types.  What did you use
  34. > for a "set modem type" command?  Does the Codex 3265 use the AT command
  35. > set?
  36. >
  37.  
  38. Hi Frank ,
  39.  
  40. Thanks for your reply,
  41.  
  42. Here is my kermit initialization,
  43.  
  44. set modem type user-defined unknown
  45. set modem name codex3265
  46. set modem capabilities AT DC EC HWFC SWFC
  47. set modem maximum-speed 38400
  48. set modem speed-matching on
  49. set modem dial-command ATD%s\13
  50. set modem error-correction on
  51. set modem compression on
  52. set modem command autoanswer on AT*AA2\13
  53. set modem command compression on AT*DC1\13
  54. set modem command compression off AT*DC0\13
  55. set modem command error-correction on AT*EC0\13
  56. set modem command init-string AT&F&C1&D2*FL3\13
  57. set modem command pulse AT&PT1
  58. set modem command tone AT*PT0
  59. set line /dev/ttyS0
  60. set speed 38400
  61. set dial display on
  62.  
  63. Yes, the codex 3265 uses AT command.
  64. If you find anything wrong /missing, please let me know.
  65.  
  66. > There is no standard.  It depends on both the service provider and the
  67. > modem.  The basic steps are:
  68. >
  69. >  1. Use touch-tone (not pulse) dialing.  If tone dialing is not available
  70. >     in your area, you probably can't send numeric pages.
  71. >
  72. >  2. Dial the pager service number.
  73. >
  74. >  3. Wait till the phone answers: "@" in the example above, but "@" is not
  75. >     necessarily supported by all modems -- in case it isn't, put ",,,,,,"
  76. >     (a series of commas to get the needed amount of pausing) or other
  77. >     notation understood by your modem.
  78.  
  79. What do you mean with "the phone answers "@" "?
  80. How do I know that?
  81.  
  82. >
  83.  
  84. Thanks, meanwhile I will follow your basic steps.
  85. Another question is , what about sms message to a GSM mobile phone?
  86. Is there also a basic steps for it?
  87.  
  88. Thanks,
  89. Muljawan
  90.